home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / basic / ace_final.lha / ACE_GPL_Release / SUBmods / FontReq / test.b < prev   
Encoding:
Text File  |  1996-08-29  |  304 b   |  12 lines

  1. #include <SUBmods/FontReq.h>
  2.  
  3. DECLARE STRUCT FontInfo info
  4.  
  5. IF FontInfoRequest(info) THEN
  6.   PRINT "Font name:   ";CSTR(info->fontName)
  7.   PRINT "Font height: ";info->fontHeight
  8.   PRINT "Text style:  ";info->textStyle
  9.   PRINT "Font color:  ";info->frontColor
  10.   PRINT "Back color:  ";info->backColor
  11. END IF
  12.